home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 138 / 138.xpi / chrome / stumbleupon.jar / content / signoutDialog.xul < prev    next >
Extensible Markup Language  |  2009-05-22  |  951b  |  32 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  4.  
  5. <!DOCTYPE window SYSTEM "chrome://stumbleupon/locale/stumbleupon.dtd" >
  6.  
  7. <dialog id="stumble_signout_dialog" title="StumbleUpon Sign-out"
  8.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  9.   buttons="accept,cancel,extra1"
  10.   ondialogaccept="return doOK();"
  11.   ondialogcancel="return doCancel();"
  12.   onload="init()">
  13.  
  14. <stringbundleset id="stringbundleset">
  15.     <stringbundle id="bundle_stumble" src="chrome://stumbleupon/locale/stumbleupon.properties"/>
  16. </stringbundleset>
  17.  
  18. <script type="application/x-javascript" src="signoutDialog.js"/>
  19.  
  20. <spacer height="10px"/>
  21. <hbox>
  22.     <vbox>
  23.         <image class="question-icon" />
  24.     </vbox>
  25.     <description style="white-space: pre;text-align: center;">Are you sure you want to Sign-out?
  26.  
  27. Do you know your password?
  28.         </description>
  29. </hbox>
  30. <spacer height="10px"/>
  31. </dialog>
  32.